home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / DEMO_BAT.ZIP / ZIPTODAY.BAT < prev   
DOS Batch File  |  1995-04-01  |  471b  |  20 lines

  1. @echo off
  2. cls
  3. echo All files on C: dated today will be archived into a ZIP file (TODAY.ZIP).
  4. echo Gathering a list of today's files...
  5. pause >nul
  6. echo on
  7. ffg>today.lst C:* /dT /fp /fs!
  8. @echo off
  9. pkzip -wH today.ZIP @today.lst
  10. del today.lst
  11. cls
  12. echo Next File Finder/Grouper will be used to view the contents of the ZIP file:
  13. pause
  14. echo on
  15. ffg .\* /r /z.zip /dT
  16. @echo off
  17. echo Since this is a demo the TODAY.ZIP will now be deleted.
  18. pause
  19. del today.zip
  20.